home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-03 | 564 b | 33 lines | [TEXT/KAHL] |
- ///--------------------------------------------------------------------------------------
- // Stars.h
- //
- // By: Vern Jensen
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void main( void );
- void CreateSpriteWorld( void );
- void CreateSprites( void );
-
- void RunAnimation( void );
- void ShutDown( void );
- void BallSpriteMoveProc(SpritePtr ballSpriteP);
-
- void SetUpStars( void );
- void MoveStars( void );
-
-
- #ifdef __cplusplus
- }
- #endif
-